{
  "openapi": "3.1.0",
  "info": {
    "title": "Lifemap 人生地圖 Public API",
    "version": "1.0.0",
    "description": "Lifemap 人生地圖（台灣線上宗教服務平台）公開資料端點，提供 AI 代理與第三方整合查詢廟宇、商品、服務與內容。",
    "contact": {
      "name": "Lifemap",
      "url": "https://www.lifemap.com.tw/"
    },
    "license": {
      "name": "Proprietary"
    }
  },
  "servers": [
    {
      "url": "https://www.lifemap.com.tw",
      "description": "Production"
    }
  ],
  "tags": [
    { "name": "Discovery", "description": "AI 與爬蟲導引資源" },
    { "name": "Sitemap", "description": "站點地圖" },
    { "name": "Content", "description": "公開內容頁面" }
  ],
  "paths": {
    "/llms.txt": {
      "get": {
        "tags": ["Discovery"],
        "summary": "AI 代理可讀的網站摘要（llmstxt.org 標準）",
        "responses": {
          "200": {
            "description": "純文字 Markdown 摘要",
            "content": {
              "text/plain": {
                "schema": { "type": "string" }
              }
            }
          }
        }
      }
    },
    "/sitemap.xml": {
      "get": {
        "tags": ["Sitemap"],
        "summary": "Sitemap 索引",
        "responses": {
          "200": {
            "description": "Sitemap XML",
            "content": {
              "application/xml": {
                "schema": { "type": "string" }
              }
            }
          }
        }
      }
    },
    "/robots.txt": {
      "get": {
        "tags": ["Discovery"],
        "summary": "爬蟲規則",
        "responses": {
          "200": {
            "description": "robots.txt",
            "content": {
              "text/plain": {
                "schema": { "type": "string" }
              }
            }
          }
        }
      }
    },
    "/religious-services": {
      "get": {
        "tags": ["Content"],
        "summary": "宗教服務總覽頁",
        "responses": {
          "200": {
            "description": "HTML 頁面，含 Service / FAQPage JSON-LD"
          }
        }
      }
    },
    "/religious-services/blessing-lighting": {
      "get": {
        "tags": ["Content"],
        "summary": "點燈祈福服務頁",
        "responses": {
          "200": { "description": "HTML 頁面，含 Service JSON-LD" }
        }
      }
    },
    "/religious-services/serial-lighting": {
      "get": {
        "tags": ["Content"],
        "summary": "序號兌換點燈頁",
        "responses": {
          "200": { "description": "HTML 頁面，含 Service JSON-LD" }
        }
      }
    },
    "/draw-lot": {
      "get": {
        "tags": ["Content"],
        "summary": "抽籤服務入口",
        "responses": { "200": { "description": "HTML 頁面" } }
      }
    },
    "/tarot-divination": {
      "get": {
        "tags": ["Content"],
        "summary": "塔羅占卜服務入口",
        "responses": { "200": { "description": "HTML 頁面" } }
      }
    },
    "/fate-calculation": {
      "get": {
        "tags": ["Content"],
        "summary": "算命服務入口",
        "responses": { "200": { "description": "HTML 頁面" } }
      }
    },
    "/matchmaking": {
      "get": {
        "tags": ["Content"],
        "summary": "婚配服務入口",
        "responses": { "200": { "description": "HTML 頁面" } }
      }
    },
    "/help-center": {
      "get": {
        "tags": ["Content"],
        "summary": "常見問題（FAQPage JSON-LD）",
        "responses": { "200": { "description": "HTML 頁面" } }
      }
    },
    "/about-us": {
      "get": {
        "tags": ["Content"],
        "summary": "關於我們",
        "responses": { "200": { "description": "HTML 頁面" } }
      }
    }
  }
}
